home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP19 / EDRTEST.C < prev    next >
C/C++ Source or Header  |  1995-12-31  |  2KB  |  76 lines

  1. /*--------------------------------------------------------
  2.    EDRTEST.C -- Program using EDRLIB dynamic link library
  3.                 (c) Charles Petzold, 1996
  4.   --------------------------------------------------------*/
  5.  
  6. #include <windows.h>
  7. #include "edrlib.h"
  8.  
  9. LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;
  10.  
  11. int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
  12.                     PSTR szCmdLine, int iCmdShow)
  13.      {
  14.      static char  szAppName[] = "StrProg" ;
  15.      HWND         hwnd ;
  16.      MSG          msg ;
  17.      WNDCLASSEX   wndclass ;
  18.  
  19.      wndclass.cbSize        = sizeof (wndclass) ;
  20.      wndclass.style         = CS_HREDRAW | CS_VREDRAW ;
  21.      wndclass.lpfnWndProc   = WndProc ;
  22.      wndclass.cbClsExtra    = 0 ;
  23.      wndclass.cbWndExtra    = 0 ;
  24.      wndclass.hInstance     = hInstance ;
  25.      wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;
  26.      wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;
  27.      wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;
  28.      wndclass.lpszMenuName  = NULL ;
  29.      wndclass.lpszClassName = szAppName ;
  30.      wndclass.hIconSm       = LoadIcon (NULL, IDI_APPLICATION) ;
  31.  
  32.      RegisterClassEx (&wndclass) ;
  33.  
  34.      hwnd = CreateWindow (szAppName, "DLL Demonstration Program",
  35.                           WS_OVERLAPPEDWINDOW,
  36.                           CW_USEDEFAULT, CW_USEDEFAULT,
  37.                           CW_USEDEFAULT, CW_USEDEFAULT,
  38.                           NULL, NULL, hInstance, NULL) ;
  39.  
  40.      ShowWindow (hwnd, iCmdShow) ;
  41.      UpdateWindow (hwnd) ;
  42.  
  43.      while (GetMessage (&msg, NULL, 0, 0))
  44.           {
  45.           TranslateMessage (&msg) ;
  46.           DispatchMessage (&msg) ;
  47.           }
  48.      return msg.wParam ;
  49.      }
  50.  
  51. LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
  52.      {
  53.      HDC         hdc ;
  54.      PAINTSTRUCT ps ;
  55.      RECT        rect ;
  56.  
  57.      switch (iMsg)
  58.           {
  59.           case WM_PAINT :
  60.                hdc = BeginPaint (hwnd, &ps) ;
  61.  
  62.                GetClientRect (hwnd, &rect) ;
  63.  
  64.                EdrCenterText (hdc, &rect,
  65.                               "This string was displayed by a DLL") ;
  66.  
  67.                EndPaint (hwnd, &ps) ;
  68.                return 0 ;
  69.  
  70.           case WM_DESTROY :
  71.                PostQuitMessage (0) ;
  72.                return 0 ;
  73.           }
  74.      return DefWindowProc (hwnd, iMsg, wParam, lParam) ;
  75.      }
  76.